home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / internet / irc_i_dodatki / mcf4amirc / rexx / mcf_status.amirx < prev    next >
Text File  |  1996-10-28  |  1KB  |  10 lines

  1. /* MCF_STATUS.AMIRX
  2. // $VER: MCF_STATUS.AMIRX 4.8 (28.10.96)
  3. \\ Written by Donald T. Becker (dtbecker@prolog.net) IRC: StarDustr
  4. // Please mail any bug reports/comments to the above address with a subject
  5. \\ header of MCF.AMIRX.
  6. //
  7. \\ ** What to do with this file?
  8. // Put this script in REXX:  It will be used by MCF.AMIRX.
  9. */
  10. ;arg MCFenv auth Rnick junk;address value(MCFenv);DeLay=1;xl=pos(".",MCFenv)+1;Client=substr(MCFenv,xl);SFP="SFP."||Client;SFPflag=getclip(value(SFP));if SFPflag='Y' then exit;call setclip(value(SFP),'Y');CMC="CMDS."||Client;Cmds=getclip(value(CMC));mline.1="RAW PRIVMSG "Rnick" : Level | Available Commands";mline.2="RAW PRIVMSG "Rnick" :-------|------------------------------------------";parse value Cmds with Clev cmd.1 Cmds;cnt=1;do ant=3 by 1 until Cmds="";Cline="RAW PRIVMSG "Rnick" :   "||Clev||"  | ";do until lev.cnt ~=Clev;cnt=cnt+1;xnt=cnt-1;Cline=Cline cmd.xnt;parse value Cmds with lev.cnt cmd.cnt Cmds;end;if auth ~<Clev then mline.ant=Cline;Clev=lev.cnt;end ant;ant=ant+1;mline.ant="RAW PRIVMSG "Rnick" :--------------------------------------------------";ant=ant+1;mline.ant="RAW PRIVMSG "Rnick" :Your level is "||auth||". Type %HELP Command for more Info.";do bnt=1 by 1 until ant=bnt;mline.bnt;address command wait DeLay sec;end bnt;call setclip(value(SFP));exit